home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Shareware Gold
/
Windows Shareware Gold Volume 3 Number 1 (Sherburne Knowledge Systems) (1991).iso
/
apps
/
f1192
/
gdi.scr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-09-22
|
354 b
|
21 lines
; Gdi.scr - draw unicom boxes on screen
i = 0
j = 0
GdiCreatePen(0, 1,255,0,0)
GdiCreateBrush(0,0,0)
while (j< 350)
i=0
while (i<640)
l = 0
while (l < 20)
GdiRectangle(i-l,j+l,i+40+l,j+60-l)
l = l+5
endwhile
gditextout(i - l/2,j+l,"UNICOM")
i=i+80
endwhile
j=j+60
endwhile
exit